home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / aal / print.h < prev    next >
C/C++ Source or Header  |  2006-01-09  |  438b  |  23 lines

  1. /* Copyright (C) 2001, 2002, 2003 by Hans Reiser, licensing governed by
  2.    libaal/COPYING.
  3.    
  4.    print.h -- printing and formating strings functions. */
  5.  
  6. #ifndef AAL_PRINT_H
  7. #define AAL_PRINT_H
  8.  
  9. #ifndef ENABLE_MINIMAL
  10. #include <aal/types.h>
  11.  
  12. extern int aal_vsnprintf(char *buff, uint32_t n,
  13.              const char *format, 
  14.              va_list arg_list);
  15.  
  16. extern int aal_snprintf(char *buff, uint32_t n,
  17.             const char *format, 
  18.             ...);
  19. #endif
  20.  
  21. #endif
  22.  
  23.